home *** CD-ROM | disk | FTP | other *** search
- function stormshoot()
- {
- _root.arrowimg = "shoot4";
- duplicateMovieClip("_root.arrows.arrow","arrow" + _root.i,16384 + _root.i);
- arrown = "arrow" + _root.i;
- _root.i += 1;
- arrowshooted += 1;
- arrowy -= 4;
- if(_root.player._xscale >= 0)
- {
- _root.arrows[arrown]._x = _root.player._x - 50.05;
- _root.arrows[arrown]._xscale = _root.player._xscale;
- _root.arrows[arrown]._y = _root.player._y + 40.65;
- _root.arrows[arrown]._y -= arrowy;
- }
- else if(_root.player._xscale < 0)
- {
- _root.arrows[arrown]._x = _root.player._x + 50.05;
- _root.arrows[arrown]._xscale = _root.player._xscale;
- _root.arrows[arrown]._y = _root.player._y + 40.65;
- _root.arrows[arrown]._y -= arrowy;
- }
- }
-